What is a Session?
2182
18-Mar-2011
Anonymous User
18-Mar-2011session
A session is a logical object created by the PHP engine to allow you to preserve data across subsequent HTTP requests.
An alternative way to make data accessible across the various pages of an entire website is to use a PHP Session.
A session creates a file in a temporary directory on the server where registered session variables and their values are stored. This data will be available to all pages on the site during that visit.
The location of the temporary file is determined by a setting in the php.ini file called session.save_path. Bore using any session variable make sure you have setup this path.